pgx 0.1.25

pgx: A Rust framework for creating Postgres extensions
docs.rs failed to build pgx-0.1.25
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: pgx-0.7.4
`pgx` is a framework for creating Postgres extensions in 100% Rust ## Example ```rust,no_run use pgx::*; pg_module_magic!(); // Convert the input string to lowercase and return #[pg_extern] fn my_to_lowercase(input: &'static str) -> String { input.to_lowercase() } ```